home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / PASSDK30.ZIP;1 / DISK1.ZIP / PAS / SUBS / MK.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-04-07  |  559 b   |  33 lines

  1. rem
  2. rem Build the Main Librarys
  3. rem using either Microsoft or Borland tools
  4. rem
  5.     @echo off
  6.     if not (%debug%)==(ON) goto label05
  7.     @echo on
  8. :label05
  9.  
  10.     if (%1)==()    goto help
  11.     if (%1)==(BCC) goto bcc
  12.     if (%1)==(bcc) goto bcc
  13.  
  14.     del  ..\inc\m*.lib
  15.     goto build
  16.  
  17. :bcc
  18.     del  ..\inc\b*.lib
  19.  
  20. :build
  21.     call large %1
  22.     call small %1
  23.     call tiny  %1
  24.     goto done
  25.  
  26. :help
  27.     echo To Use: DOS\ MK [MSC or BCC]
  28.     echo Where:           MSC specifies Microsoft C
  29.     echo          BCC specifies Borland C
  30.  
  31. :done
  32.  
  33.